home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
et
/
et-2_2.lha
/
et2.2
/
examples
/
guard
/
makefile
< prev
Wrap
Makefile
|
1990-12-21
|
380b
|
28 lines
.SUFFIXES: .C
CC = etCC $(CCFLAGS)
.C.o:
$(CC) $(CCFLAGS) -c $<
#-------------------------------------------------------------------------------
OFILES = guard.o
all: guard
guard: $(ET_DIR)/src/col.o $(OFILES)
$(CC) -col -o $@ $(OFILES)
depend:
etmakedep $(CCFLAGS) *.C
clean:
rm -f core *.o errs
clobber: clean
etdeldep
rm -f guard makefile.bak